const github.com/klauspost/compress/internal/snapref.maxBlockSize
12 uses
github.com/klauspost/compress/internal/snapref (current package)
decode.go#L82: decoded: make([]byte, maxBlockSize),
encode.go#L35: if len(p) > maxBlockSize {
encode.go#L36: p, src = p[:maxBlockSize], p[maxBlockSize:]
encode.go#L140: ibuf: make([]byte, 0, maxBlockSize),
encode.go#L226: if len(p) > maxBlockSize {
encode.go#L227: uncompressed, p = p[:maxBlockSize], p[maxBlockSize:]
encode_other.go#L104: if len(p) > maxBlockSize {
encode_other.go#L105: p, src = p[:maxBlockSize], p[maxBlockSize:]
snappy.go#L72: maxBlockSize = 65536
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |